Frame Types
When an AWT context requests a new frame through theMyRequestFrame
callback, it specifies the type of frame desired.
enum JMFrameKind { eBorderlessModelessWindowFrame = 0, eModelessWindowFrame, eModalWindowFrame };Constant descriptions
See the description of the function
- eBorderlessModelessWindowFrame
- A modeless borderless frame. This frame type is analogous to a Mac OS borderless window (for example, a splash screen). Other frames can appear on top of this one.
- eModelessWindowFrame
- A modeless frame. This frame type is analogous to a standard Mac OS window (with title bar, grow box, and so on).
- eModalWindowFrame
- A modal frame. This frame type is analogous to a Mac OS modal dialog window. You should not create other frames on top of a modal frame, but you can create ones underneath it.
MyRequestFrame
(page 61) for more information about using these values.
Main | Top of Section | What's New | Apple Computer, Inc. | Find It | Feedback | Help